How to use the script file for Visual Localize 4.X /5.x ?

Create a shortcut for your "Visloc.exe"-file. Change the start properties for Visloc in your shortcut:
[Drive]:\[Path_to_Visual_Localize]\Visloc.exe -script:"[Drive]:\[Path_to_your_scriptfile]\visloc.vls"
By running the 'shortcut for Visual Localize' all operations within the script file "visloc.vls" will be processed.
Possible operations to be scripted:
1. RELOAD: This script operation reloads all program modules in your Visloc-project in case of a software update:
    All program modules (EXE, DLL, OCX) will be updated or added to your localization project file.
2. CREATEFILES: This script operation generates target files (also .NET satellite assemblies) of your localized project file.
3. IMPORTDIC: This script operation imports a Visual Localize dictionary into your Visloc-project.

Syntax for creating target files from your Visual Localize project file:
createfiles "[Drive]:\[Path_to_your_Visual_Localize_project_file]\[Name_of_your_project_files].prj" "[Drive]:\[Destination_path_for_target_files]\" /net /o
Optional parameters for creating target files:
    /net: To generate .NET satellite assemblies (*.resources.dll) from all .NET framework based application modules (EXE,DLL) in your project file.
    /o :   To overwrite existing target files automatically.
e.g.: createfiles "D:\test\source\DOTNETSample.prj"  "E:\localizedtargetfiles\"  /net /o


Syntax for reloading program modules (EXE, DLL or OCX-files) in your Visloc-project file:
reload "[Drive]:\[Path_to_your_Visual_Localize_project_file]\[Name_of_your_project_files].prj" "[Drive]:\[Path_to_your_updated_program_modules]\" 
e.g.: reload "D:\test\source\Textproject.prj"  "F:\Development\sourcefiles\"


Syntax for importing a Visual Localize dictionary into your project file:
importdic "[Drive]:\[Path_to_your_Visual_Localize_project_file]\[Name_of_your_project_files].prj" "[Drive]:\[Path_to_your_dictionary]\[Name_of_dictionary].dic" /add /replace /ignore
Optional parameters for importing a dictionary:
    /add: Imports all phrases (default translation and exceptions) from your dictionary and adds them to your Visloc-project.
    /replace: If there is a import conflict because of an already existing translation, all conflict phrases will be replaced with the translation of the imported dictionary.
    /ignore:  Only new translations will be imported from the dictionary. Existing translations in the localization project remain untouched.

e.g.: importdic "D:\test\source\Testproject.prj"  "D:\test\dictionaries\Testdictionary.dic"  /add
---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
